We only want the list .separators class to affect its
immediate children - otherwise, we end up with separators
in dropdowns that are places into button strips. As a side
benefit, restricting this to immediate children makes for
faster matching.
> row.expander .row-header { padding: 2px; }
&.horizontal row.separator:not(:first-child),
- &.separators.horizontal row:not(:first-child) {
+ &.separators.horizontal > row:not(:first-child) {
border-left: 1px solid $borders_color;
}
&:not(.horizontal) row.separator:not(:first-child),
- &.separators:not(.horizontal) row:not(:first-child) {
+ &.separators:not(.horizontal) > row:not(:first-child) {
border-top: 1px solid $borders_color;
}
}